Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 27, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@eslint/js (source) ^9.28.0 -> ^9.38.0 age confidence devDependencies patch
@ianvs/prettier-plugin-sort-imports ^4.4.2 -> ^4.7.0 age confidence dependencies minor
@nuxt/eslint (source) 1.4.1 -> 1.9.0 age confidence dependencies minor
@sanity/client (source) ^7.5.0 -> ^7.12.0 age confidence dependencies patch
@sanity/client (source) 7.5.0 -> 7.12.0 age confidence dependencies minor
@sveltejs/kit (source) ^2.21.5 -> ^2.47.1 age confidence devDependencies minor 2.47.3 (+1)
@tailwindcss/postcss (source) ^4.1.10 -> ^4.1.14 age confidence devDependencies patch 4.1.15
@tailwindcss/vite (source) ^4.0.6 -> ^4.1.14 age confidence dependencies patch 4.1.15
@tailwindcss/vite (source) ^4.1.10 -> ^4.1.14 age confidence dependencies patch 4.1.15
@tanstack/react-devtools (source) ^0.7.0 -> ^0.7.7 age confidence dependencies patch
@tanstack/react-router (source) ^1.132.0 -> ^1.133.15 age confidence dependencies patch 1.133.22 (+4)
@tanstack/react-router-devtools (source) ^1.132.0 -> ^1.133.15 age confidence dependencies patch 1.133.22 (+4)
@tanstack/react-router-ssr-query (source) ^1.131.7 -> ^1.133.16 age confidence dependencies patch 1.133.22 (+4)
@tanstack/react-start (source) ^1.132.0 -> ^1.133.15 age confidence dependencies patch 1.133.22 (+4)
@tanstack/router-plugin (source) ^1.132.0 -> ^1.133.15 age confidence dependencies patch 1.133.22 (+4)
@types/node (source) ^22 -> ^22.18.11 age confidence devDependencies patch 22.18.12
@types/react (source) ^19.2.0 -> ^19.2.2 age confidence devDependencies patch
@types/react (source) ^18.3.23 -> ^18.3.26 age confidence devDependencies minor
@types/react-dom (source) ^19.2.0 -> ^19.2.2 age confidence devDependencies patch
eslint (source) ^9.37.0 -> ^9.38.0 age confidence devDependencies patch
eslint (source) ^9.28.0 -> ^9.38.0 age confidence devDependencies patch
eslint (source) ^9.28.0 -> ^9.38.0 age confidence dependencies patch
eslint-config-next (source) 14.2.30 -> 14.2.33 age confidence devDependencies patch
eslint-plugin-svelte (source) ^3.9.2 -> ^3.12.5 age confidence devDependencies minor
globals ^16.2.0 -> ^16.4.0 age confidence devDependencies patch
groq (source) ^4.6.0 -> ^4.10.3 age confidence dependencies patch 4.11.0
next (source) 14.2.32 -> 14.2.33 age confidence dependencies patch
oven/bun 1.2.16-slim -> 1.3.0-slim age confidence final minor 1.3.1-slim
postcss (source) ^8.5.5 -> ^8.5.6 age confidence devDependencies patch
prettier (source) ^3.5.3 -> ^3.6.2 age confidence dependencies minor
prettier-plugin-tailwindcss ^0.6.12 -> ^0.7.1 age confidence dependencies minor
sanity (source) 4.6.0 -> 4.10.3 age confidence dependencies minor 4.11.0
svelte (source) ^5.34.1 -> ^5.41.0 age confidence devDependencies minor 5.41.2 (+1)
svelte-check ^4.2.1 -> ^4.3.3 age confidence devDependencies minor
tailwindcss (source) ^4.0.6 -> ^4.1.14 age confidence dependencies patch 4.1.15
tailwindcss (source) ^4.1.10 -> ^4.1.14 age confidence devDependencies patch 4.1.15
tailwindcss (source) ^4.1.10 -> ^4.1.14 age confidence dependencies patch 4.1.15
tailwindcss (source) ^3.4.17 -> ^3.4.18 age confidence devDependencies patch
typescript-eslint (source) ^8.34.0 -> ^8.46.1 age confidence devDependencies patch 8.46.2
vite (source) ^7.1.7 -> ^7.1.10 age confidence devDependencies patch 7.1.11

Release Notes

ianvs/prettier-plugin-sort-imports (@​ianvs/prettier-plugin-sort-imports)

v4.7.0

Compare Source

What's Changed

This project began as a fork because I wanted a plugin that would not move side-effect imports around and mess with my CSS cascade. So its first and most distinguishing feature is that side-effect imports do not move, and other imports are not sorted across them.

This works fine in most cases, but some people have side-effect imports that they know can be sorted safely. For those, there is now an "escape hatch" option named importOrderSafeSideEffects. It is an array of glob pattern strings (similar to importOrder) which, when they match against a side-effect import, allow that import to be sorted as if it were a standard import.

Suggestions for safe use:

  • Use ^ at the start of your pattern and $ at the end, to avoid accidentally matching part of an import name. For example, "^server-only$", to avoid matching against import "not-server-only".
  • Use extreme caution if matching against relative files or CSS files. If you decide to sort CSS imports and a file ever imports more than one CSS file, your cascade may change.
  • You can still use // prettier-ignore to stop sorting a particular import that would otherwise be sorted.

Feedback on this feature is welcome.

Features
Internal

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.3...v4.7.0

v4.6.3

Compare Source

What's Changed

  • Revert "fix: conditionally register ember and oxc parsers when depend… by @​IanVS in IanVS#237

Full Changelog: IanVS/prettier-plugin-sort-imports@4.6.2...v4.6.3

v4.6.2

Compare Source

What's Changed

  • fix: conditionally register ember and oxc parsers when dependencies available by @​jahands in IanVS#234

New Contributors

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.1...4.6.2

v4.6.1

Compare Source

What's Changed

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.0...v4.6.1

v4.6.0

Compare Source

What's Changed

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.5.1...v4.6.0

v4.5.1

Compare Source

What's Changed

Fixes
Internal

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.5.0...v4.5.1

v4.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.4.2...v4.5.0

nuxt/eslint (@​nuxt/eslint)

v1.9.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.8.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.7.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.7.0

Compare Source

   🚀 Features
    View changes on GitHub

v1.6.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.2

Compare Source

   🚀 Features
    View changes on GitHub

v1.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
sanity-io/client (@​sanity/client)

v7.12.0

Compare Source

Features

v7.11.2

Compare Source

Bug Fixes

v7.11.1

Compare Source

Bug Fixes
  • move extra options check after first connect attempt (#​1136) (fa8a040)

v7.11.0

Compare Source

Features

v7.10.0

Compare Source

Features
  • projects: allow a project list to be filtered to a specific Organization ID (#​1131) (b455862)

v7.9.0

Compare Source

Features
  • add ReleaseCardinality type and update ReleaseDocument interface (#​1129) (fd5198e)
  • allow experimental resource for projects and datasets (#​1124) (a2c8892)

v7.8.2

Compare Source

Bug Fixes

v7.8.1

Compare Source

Bug Fixes
  • add missing provider property to CurrentSanityUser type (#​1115) (5d98eca)

v7.8.0

Compare Source

Features
  • version.create action supports optional baseId and versionId instead of document (#​1108) (aaa1042)

v7.7.0

Compare Source

Features
  • add isHttpError method (and shared HttpError interface) (#​1112) (98ee6d3)
  • add ignoreExperimentalApiWarning configuration option (#​1107) (b1cdfbe)

v7.6.0

Compare Source

Features
  • transform: adds support for optional imageUrl param in for target.operation image-description (#​1105) (c47214f)
sveltejs/kit (@​sveltejs/kit)

v2.47.1

Compare Source

Patch Changes
  • fix: allow read to be used at the top-level of remote function files (#​14672)

  • fix: more robust remote files generation (#​14682)

v2.47.0

Compare Source

Minor Changes
Patch Changes
  • fix: resolve remote module syntax errors with trailing expressions (#​14728)

v2.46.5

Compare Source

Patch Changes
  • fix: ensure form remote functions' fields.set triggers reactivity (#​14661)

v2.46.4

Compare Source

Patch Changes
  • fix: prevent access of Svelte 5-only untrack function (#​14658)

v2.46.3

Compare Source

Patch Changes
  • fix: merge field.set(...) calls (#​14651)

  • fix: don't automatically reset form after an enhanced submission (#​14626)

  • fix: normalize path strings when updating field values (#​14649)

v2.46.2

Compare Source

Patch Changes
  • fix: prevent code execution order issues around SvelteKit's env modules (#​14637)

v2.46.1

Compare Source

Patch Changes
  • fix: use $derived for form fields (#​14621)

  • docs: remove @example blocks to allow docs to deploy (#​14636)

  • fix: require a value with submit and hidden fields (#​14635)

  • fix: delete hydration cache on effect teardown (#​14611)

v2.46.0

Compare Source

Minor Changes
  • feat: imperative form validation (#​14624)
Patch Changes
  • fix: wait a tick before collecting form data for validation (#​14631)

  • fix: prevent code execution order issues around SvelteKit's env modules (#​14632)

v2.45.0

Compare Source

Minor Changes
  • feat: form.for(id) now implicitly sets id on form object (#​14623)
Patch Changes
  • fix: allow fetch in remote function without emitting a warning (#​14610)

v2.44.0

Compare Source

Minor Changes
  • feat: expose event.route and event.url to remote functions (#​14606)

  • breaking: update experimental form API (#​14481)

Patch Changes
  • fix: don't crawl error responses during prerendering (#​14596)

v2.43.8

Compare Source

Patch Changes
  • fix: HMR for query (#​14587)

  • fix: avoid client modules while traversing dependencies to prevent FOUC during dev (#​14577)

  • fix: skip prebundling of .remote.js files (#​14583)

  • fix: more robust remote file pattern matching (#​14578)

v2.43.7

Compare Source

Patch Changes
  • fix: correctly type the result of form remote functions that do not accept data (#​14573)

  • fix: force remote module chunks to isolate themselves (#​14571)

v2.43.6

Compare Source

Patch Changes
  • fix: ensure cache key is consistent between client/server (#​14563)

  • fix: keep resolve relative to initial base during prerender (#​14533)

  • fix: avoid including HEAD twice when an unhandled HTTP method is used in a request to a +server handler that has both a GET handler and a HEAD handler (#​14564)

  • fix: smoothscroll to deep link (#​14569)

v2.43.5

Compare Source

Patch Changes
  • fix: fall back to non-relative resolution when calling resolve(...) outside an event context (#​14532)

v2.43.4

Compare Source

Patch Changes
  • fix: Webcontainer AsyncLocalStorage workaround (#​14526)

v2.43.3

Compare Source

Patch Changes
  • fix: Webcontainer AsyncLocalStorage workaround (#​14521)

  • fix: include the value of form submitters on form remote functions (#​14475)

v2.43.2

Compare Source

Patch Changes
  • fix: ensure rendering starts off synchronously (#​14517)

  • fix: keep serialized remote data alive until navigation (#​14508)

v2.43.1

Compare Source

Patch Changes
  • fix: consistently use bare import for internals (#​14506)

v2.43.0

Compare Source

Minor Changes
Patch Changes
  • fix: ensure __SVELTEKIT_PAYLOAD__.data is accessed safely (#​14491)

  • fix: create separate cache entries for non-exported remote function queries (#​14499)

v2.42.2

Compare Source

Patch Changes
  • fix: prevent loops in postbuild analysis phase (#​14450)

  • fix: handle nested object fields in form data (#​14469)

  • fix: robustify form helper types (#​14463)

  • fix: avoid running the init hook during builds if there's nothing to prerender (#​14464)

  • fix: ensure SSR rendering gets request store context (#​14476)

v2.42.1

Compare Source

Patch Changes
  • fix: ensure environment setup is in its own chunk (#​14441)

v2.42.0

Compare Source

Minor Changes
  • feat: enhance remote form functions with schema support, input and issues properties (#​14383)

  • breaking: remote form functions get passed a parsed POJO instead of a FormData object now (#​14383)

v2.41.0

Compare Source

Minor Changes
  • feat: add %sveltekit.version% to app.html (#​12132)
Patch Changes
  • fix: allow remote functions to return custom types serialized with transport hooks (#​14435)

  • fix: fulfil beforeNavigate complete when redirected (#​12896)

v2.40.0

Compare Source

Minor Changes
  • feat: include event property on popstate/link/form navigation (#​14307)
Patch Changes
  • fix: respect replaceState/keepFocus/noScroll when a navigation results in a redirect (#​14424)

  • fix: invalidate preload cache when invalidateAll is true (#​14420)

v2.39.1

Compare Source

Patch Changes
  • fix: more robust remote function code transformation (#​14418)

v2.39.0

Compare Source

Minor Changes
  • feat: lazy discovery of remote functions (#​14293)
Patch Changes
  • fix: layout load data not serialized on error page (#​14395)

  • fix: fail prerendering when remote function fails (#​14365)

  • fix: treat handle hook redirect as part of remote function call as json redirect (#​14362)

v2.38.1

Compare Source

Patch Changes
  • fix: enable redirects from queries (#​14400)

  • fix: remove empty nodes from serialized server load data (#​14404)

  • fix: allow commands from within endpoints (#​14343)

v2.38.0

Compare Source

Minor Changes
  • feat: add new remote function query.batch (#​14272)

v2.37.1

Compare Source

Patch Changes
  • fix: serialize server load data before passing to universal load, to handle mutations and promises (#​14298)

  • fix: resolve_route prevent dropping a trailing slash of id (#​14294)

  • fix: assign correct status code to form submission error on the client (#​14345)

  • fix: un-proxy form.result (#​14346)

v2.37.0

Compare Source

Minor Changes
  • feat: automatically resolve query.refresh() promises on the server (#​14332)

  • feat: allow query.set() to be called on the server (#​14304)

Patch Changes
  • fix: disable CSRF checks in dev (#​14335)

  • fix: allow redirects to external URL


Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

@vercel
Copy link

vercel bot commented Aug 27, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
lcapi-examples-api Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-astro Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-next-13 Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-next-14 Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-next-15 Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-next-16 Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-next-canary Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-next-enterprise Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-nuxt Error Error Oct 22, 2025 11:53pm
lcapi-examples-studio Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-sveltekit Ready Ready Preview Comment Oct 22, 2025 11:53pm
lcapi-examples-tanstack-start Ready Ready Preview Comment Oct 22, 2025 11:53pm

@renovate renovate bot force-pushed the renovate/non-major branch from 85c8e12 to 8fa989f Compare August 27, 2025 18:03
@renovate renovate bot force-pushed the renovate/non-major branch from 8fa989f to 9d4b5cd Compare August 27, 2025 18:33
@renovate renovate bot force-pushed the renovate/non-major branch from 4e9a214 to b431c9f Compare October 22, 2025 23:51
@stipsan stipsan merged commit 323af08 into main Oct 22, 2025
14 of 17 checks passed
@stipsan stipsan deleted the renovate/non-major branch October 22, 2025 23:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant